home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr05 / keycal.zip / GENERIC.H < prev    next >
Text File  |  1993-07-04  |  2KB  |  40 lines

  1. /************************************************************************/
  2. /*    Module Name:  generic.h                                           */
  3. /*         Author:  ???                                                 */
  4. /*      Last Mod.:  Jay Sprenkle                                        */
  5. /*    Description:  definitions used in the file                        */
  6. /* Change History:  comments added                                      */
  7. /************************************************************************/
  8.  
  9. /**************************/
  10. /* Control ID definitions */
  11. /**************************/
  12. #define IDD_CAL      101
  13. #define IDD_DATETEXT 102
  14. #define IDD_WEEKDAY  103
  15. #define IDD_WEEKEND  104
  16. #define IDD_ANY      105
  17. #define IDD_TEST     106
  18. #define IDD_HELP     107
  19.  
  20. /*************************/
  21. /* Menu item definitions */
  22. /*************************/
  23. #define IDM_ABOUT  100
  24. #define IDM_CAL    101
  25. #define IDM_F_EXIT 102
  26.  
  27. /***********************************************************************/
  28. /* If you order your code from bottom up instead of top down then this */
  29. /* declaration nonsense is unnecessary. It introduces the possibility  */
  30. /* of error and makes it necessary to change two spots in the source   */
  31. /* every time you change a routine. Once the compiler sees a routine   */
  32. /* it need not be prototyped.                                          */
  33. /***********************************************************************/
  34.  
  35. int PASCAL WinMain(HANDLE, HANDLE, LPSTR, int);
  36. BOOL InitApplication(HANDLE);
  37. BOOL InitInstance(HANDLE, int);
  38. long FAR PASCAL MainWndProc(HWND, unsigned, WORD, LONG);
  39. BOOL FAR PASCAL About(HWND, unsigned, WORD, LONG);
  40.